home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / misc / amigaguide_htw / miscellaneous / demoscript < prev    next >
Text File  |  1997-12-12  |  560b  |  20 lines

  1. ; DemoScript for "How To Write AG"
  2. ; This script is written so as to be compatible (I hope!) with all
  3. ; versions of AmigaDOS so does not have some of the more refined
  4. ; features of AmigaDOS 2.0 and later
  5.  
  6. ECHO "*ec*nPlease enter your name " NOLINE
  7.  
  8. SETENV >Nil: YourName ?
  9.  
  10. ECHO "*ec*nHi " NOLINE
  11. GETENV YourName
  12.  
  13. ECHO "I am a script run from an Amigaguide document"
  14.  
  15. ASK "*nPress RETURN to close this window"
  16.  
  17. DELETE >Nil: Env:yourName ; DELETE used in lieu of UNSETENV so as to
  18.                           ; be compatible with earlier AmigaDOS versions
  19.  
  20. ENDCLI